home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 August / TommyVideo.iso / flash / volumes / volume_1.swf / scripts / DefineButton2_221 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2003-06-08  |  503 b   |  15 lines

  1. on(release){
  2.    if(_parent.clicked != true or !_root.switchingStage)
  3.    {
  4.       _level1._root.setAlternativeCaption(_root.volumeAlternative[_root.itemNext]);
  5.       _parent.clicked = true;
  6.       menu = "menu";
  7.       parLabel = _level1._root.menuLabel;
  8.       id = _level1._root.menuId;
  9.       subLabel = _root.itemText + _root.itemNext;
  10.       act = "volumes/volume_" + _root.itemNext;
  11.       _level1._root.setCaption(menu,id,parLabel,subLabel,act);
  12.       _level1._root.controller(act);
  13.    }
  14. }
  15.